home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 1
/
PC World Interactive 1 - Nisan 1997.iso
/
nostalji
/
bbs
/
graph
/
banner.arj
/
GRAFIK
/
CSHOW
/
PRINTDOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-20
|
616b
|
20 lines
Echo Off
Cls
Echo ┌───────────────────────────────────────────────────────┐
Echo │ PrintDoc: print all CompuShow documentation (on LPT1) │
Echo ├───────────────────────────────────────────────────────┤
Echo │ To send the output to another printer, cancel by │
Echo │ typing ^C at the pause and say "PrintDoc LPT2" or │
Echo │ "PrintDoc Com1", etc. │
Echo └───────────────────────────────────────────────────────┘
Echo On
Pause Type ^C to cancel, any other key to print
If [%1]==[] GoTo P1
GoTo P2
:P1
Copy *.Doc Lpt1
GoTo P3
:P2
Copy *.Doc %1
:P3
REM done.